home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / linux / compiler-gcc3.h < prev    next >
C/C++ Source or Header  |  2005-10-13  |  741b  |  29 lines

  1. /* Never include this file directly.  Include <linux/compiler.h> instead.  */
  2.  
  3. /* These definitions are for GCC v3.x.  */
  4. #include <linux/compiler-gcc.h>
  5.  
  6. #if __GNUC_MINOR__ > 0
  7. # define __deprecated    __attribute__((deprecated))
  8. #endif
  9.  
  10. #if __GNUC_MINOR__ >= 3
  11. # define __attribute_used__    __attribute__((__used__))
  12. #else
  13. # define __attribute_used__    __attribute__((__unused__))
  14. #endif
  15.  
  16. #define __attribute_pure__    __attribute__((pure))
  17. #define __attribute_const__    __attribute__((__const__))
  18.  
  19. #if __GNUC_MINOR__ >= 1
  20. #define  noinline __attribute__((noinline))
  21. #endif
  22. #if __GNUC_MINOR__ >= 4
  23. #define __must_check __attribute__((warn_unused_result))
  24. #endif
  25.  
  26. #if __GNUC_MINOR__ >= 5
  27. #define __compiler_offsetof(a,b) __builtin_offsetof(a,b)
  28. #endif
  29.